home *** CD-ROM | disk | FTP | other *** search
/ Megahits 6 / Megahits 6 (1995)(GTI - Rhein-Main-Soft)(DE)(Disc 2 of 2)[!].iso / time_ungepackt / time_271_300 / time287 / superview / sv_arexxdemo.rx < prev   
Text File  |  1995-07-15  |  580b  |  31 lines

  1. /* Super View ARexx Demo V1.00, © 1993 by Andreas R. Kleinert */
  2.  
  3. address command
  4.  
  5. SuperView "-INSTALL_APPMENU=FALSE -INSTALL_APPICON=FALSE"
  6.  
  7. say ""
  8. say "ARexx : SuperView has been started : Waiting a moment."
  9.  
  10. wait 2
  11.  
  12. say "ARexx : Load an IFF-ILBM Gfx via the SHOW command"
  13.  
  14. address 'SuperView.rx' "SHOW=Test.iff"
  15.  
  16. wait 2
  17.  
  18. say "ARexx : Save Gfx as IFF-ACBM"
  19.  
  20. address 'SuperView.rx' "SAVE_ACBM=Test_acbm.iff"
  21.  
  22. say "ARexx : Load this IFF-ACBM Gfx now for control"
  23.  
  24. address 'SuperView.rx' "SHOW=Test_acbm.iff"
  25.  
  26. say "ARexx : O.K. : Let's quit !"
  27.  
  28. address 'SuperView.rx' "QUIT"
  29.  
  30. exit
  31.